Get Meeting Report
This API gets the details of the meeting. The info contains the information about when users joined or left the meeting
Query Parameters
The 10 digit unique ID of the meeting
Meeting secret that secures the meeting from unwanted access
Header Parameters
The content type should be application/json
You need an app created on the JioMeet Platform and using the app credentials you can create a JWT to access this API. The JWT should have an issuer and the key "app" with the app id generated from the Plaform.
- 200
- 400
- 401
- 412
Success
Schema
The total number of results
A boolean for pagination which returns if more results are available after this
The list of chat messages
{
"totalCount": 0,
"moreAvailable": true,
"messages": [
null
]
}
Example recording status response
{
"totalCount": 2,
"moreAvailable": true,
"messages": []
}
Schema
Status Code of the API
The error code of the API
The error message of the API
{
"customCode": 0,
"message": "string"
}
Schema
Status Code of the API
The error code of the API
The error message of the API
{
"customCode": 0,
"message": "string"
}
Schema
Status Code of the API
The error code of the API
The errors array which includes objects with a "property" and "message" properties describing the error
{
"customCode": 0,
"message": "string"
}